home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 August: Tool Chest / Dev.CD Aug 95 TC / Dev.CD Aug 95 TC.toast / New System Software Extensions / MacODBC SDK 2.0b1 / ODBC Tools / SampleDriver / TRANSACT.C < prev   
Encoding:
C/C++ Source or Header  |  1995-06-13  |  375 b   |  21 lines  |  [TEXT/MPS ]

  1.  
  2.     /*
  3.     ** TRANSACT.C - This is the module containing the code for ODBC for
  4.     ** processing transactions.
  5.     **
  6.     ** (C) Copyright 1991, 1992 By Microsoft Corp.
  7.     */
  8.  
  9. #include "sample.h"
  10.  
  11. //    ODBC transaction control functions.
  12.  
  13. SQL_PRE_API RETCODE SQL_API
  14. SQLTransact(
  15.     HENV        henv,
  16.     HDBC        hdbc,
  17.     UWORD       fType)
  18. {
  19.     return SQL_SUCCESS;
  20. }/* end SQLTransact */
  21.